Checkbox

Creates a checkbox group with attributes for items, name, and default selection. The example below illustrates how to start entering data. The checkbox group name is only entered once, this name is used in each generated input tag for the group. Enter a textual description for the checkbox item, this is the text that the web site user will see. Assign the item a value, this is the value which is submitted when the user submits the form. Mark the item as the default selection if required. Only one item may be the default selection. Once the default selection is assigned to an item it may not be removed. The item that has the default selection assignment must be deleted to free up the default selection.

Checkbox - Start

Click the "Add to list" button" to create the checkbox item. Repeat the process for each additional checkbox item required for the group.

Checkbox - mid point

Click the "Insert" button to insert the text into the active document.

Checkbox - finish

The above example would yield the following text:

<INPUT NAME="software" TYPE="CHECKBOX" CHECKED VALUE="vbasic">Visual Basic</INPUT>
<INPUT NAME="software" TYPE="CHECKBOX"VALUE="vcplus">Visual C++</INPUT>
<INPUT NAME="software" TYPE="CHECKBOX" VALUE="msaccess">MS Access</INPUT>